type net/http.http2FrameWriteRequest

51 uses

	net/http (current package)
		h2_bundle.go#L4283: 		wantWriteFrameCh:            make(chan http2FrameWriteRequest, 8),
		h2_bundle.go#L4433: 	wantWriteFrameCh chan http2FrameWriteRequest // from handlers -> serve
		h2_bundle.go#L4711: 	wr  http2FrameWriteRequest // what was written (or attempted)
		h2_bundle.go#L4719: func (sc *http2serverConn) writeFrameAsync(wr http2FrameWriteRequest, wd *http2writeData) {
		h2_bundle.go#L4771: 	sc.writeFrame(http2FrameWriteRequest{
		h2_bundle.go#L4966: 	err := sc.writeFrameFromHandler(http2FrameWriteRequest{
		h2_bundle.go#L5009: func (sc *http2serverConn) writeFrameFromHandler(wr http2FrameWriteRequest) error {
		h2_bundle.go#L5029: func (sc *http2serverConn) writeFrame(wr http2FrameWriteRequest) {
		h2_bundle.go#L5093: func (sc *http2serverConn) startFrameWrite(wr http2FrameWriteRequest) {
		h2_bundle.go#L5223: 			sc.startFrameWrite(http2FrameWriteRequest{
		h2_bundle.go#L5233: 			sc.startFrameWrite(http2FrameWriteRequest{write: http2writeSettingsAck{}})
		h2_bundle.go#L5246: 			sc.startFrameWrite(http2FrameWriteRequest{write: http2flushFrameWriter{}})
		h2_bundle.go#L5310: 	sc.writeFrame(http2FrameWriteRequest{write: se})
		h2_bundle.go#L5444: 	sc.writeFrame(http2FrameWriteRequest{write: http2writePingAck{f}})
		h2_bundle.go#L5790: 	st.sc.writeFrameFromHandler(http2FrameWriteRequest{write: http2StreamError{
		h2_bundle.go#L6234: 			sc.writeFrameFromHandler(http2FrameWriteRequest{
		h2_bundle.go#L6275: 	if err := sc.writeFrameFromHandler(http2FrameWriteRequest{
		h2_bundle.go#L6298: 	sc.writeFrameFromHandler(http2FrameWriteRequest{
		h2_bundle.go#L6353: 	sc.writeFrame(http2FrameWriteRequest{
		h2_bundle.go#L7059: 	sc.writeFrame(http2FrameWriteRequest{
		h2_bundle.go#L10857: 	Push(wr http2FrameWriteRequest)
		h2_bundle.go#L10863: 	Pop() (wr http2FrameWriteRequest, ok bool)
		h2_bundle.go#L10874: type http2FrameWriteRequest struct {
		h2_bundle.go#L10893: func (wr http2FrameWriteRequest) StreamID() uint32 {
		h2_bundle.go#L10909: func (wr http2FrameWriteRequest) isControl() bool {
		h2_bundle.go#L10915: func (wr http2FrameWriteRequest) DataSize() int {
		h2_bundle.go#L10932: func (wr http2FrameWriteRequest) Consume(n int32) (http2FrameWriteRequest, http2FrameWriteRequest, int) {
		h2_bundle.go#L10933: 	var empty http2FrameWriteRequest
		h2_bundle.go#L10954: 		consumed := http2FrameWriteRequest{
		h2_bundle.go#L10968: 		rest := http2FrameWriteRequest{
		h2_bundle.go#L10987: func (wr http2FrameWriteRequest) String() string {
		h2_bundle.go#L10999: func (wr *http2FrameWriteRequest) replyToWriter(err error) {
		h2_bundle.go#L11013: 	s          []http2FrameWriteRequest
		h2_bundle.go#L11019: func (q *http2writeQueue) push(wr http2FrameWriteRequest) {
		h2_bundle.go#L11023: func (q *http2writeQueue) shift() http2FrameWriteRequest {
		h2_bundle.go#L11030: 	q.s[len(q.s)-1] = http2FrameWriteRequest{}
		h2_bundle.go#L11039: func (q *http2writeQueue) consume(n int32) (http2FrameWriteRequest, bool) {
		h2_bundle.go#L11041: 		return http2FrameWriteRequest{}, false
		h2_bundle.go#L11046: 		return http2FrameWriteRequest{}, false
		h2_bundle.go#L11062: 		q.s[i] = http2FrameWriteRequest{}
		h2_bundle.go#L11454: func (ws *http2priorityWriteScheduler) Push(wr http2FrameWriteRequest) {
		h2_bundle.go#L11474: func (ws *http2priorityWriteScheduler) Pop() (wr http2FrameWriteRequest, ok bool) {
		h2_bundle.go#L11561: func (ws *http2randomWriteScheduler) Push(wr http2FrameWriteRequest) {
		h2_bundle.go#L11575: func (ws *http2randomWriteScheduler) Pop() (http2FrameWriteRequest, bool) {
		h2_bundle.go#L11590: 	return http2FrameWriteRequest{}, false
		h2_bundle.go#L11661: func (ws *http2roundRobinWriteScheduler) Push(wr http2FrameWriteRequest) {
		h2_bundle.go#L11680: func (ws *http2roundRobinWriteScheduler) Pop() (http2FrameWriteRequest, bool) {
		h2_bundle.go#L11686: 		return http2FrameWriteRequest{}, false
		h2_bundle.go#L11699: 	return http2FrameWriteRequest{}, false